All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Invocation

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Invocation

public class Invocation
extends NativeObject
implements Coding
This class wraps the Objective-C class NSInvocation.


Variable Index

 o ObjCArrayType
 o ObjCBitfield
 o ObjCCharType
 o ObjCDoubleType
 o ObjCFloatType
 o ObjCLonglongType
 o ObjCLongType
 o ObjCNoType
 o ObjCObjectType
 o ObjCPointerType
 o ObjCSelectorType
 o ObjCShortType
 o ObjCStringType
 o ObjCStructType
 o ObjCUnionType
 o ObjCVoidType

Constructor Index

 o Invocation()
This default constructor is equivalent to Objective-C's [[NSInvocation alloc] init].
 o Invocation(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o Invocation(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Method Index

 o argumentsRetained()
A wrapper for the - argumentsRetained Objective-C instance method.
 o encodeWithCoder(Coder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).
 o invocationWithMethodSignature(MethodSignature)
A wrapper for the + invocationWithMethodSignature: Objective-C class method.
 o invoke()
A wrapper for the - invoke Objective-C instance method.
 o invokeWithTarget(Object)
A wrapper for the - invokeWithTarget: Objective-C instance method.
 o retainArguments()
A wrapper for the - retainArguments Objective-C instance method.
 o selector()
A wrapper for the - selector Objective-C instance method.
 o setSelector(Selector)
A wrapper for the - setSelector: Objective-C instance method.
 o setTarget(Object)
A wrapper for the - setTarget: Objective-C instance method.
 o target()
A wrapper for the - target Objective-C instance method.

Variables

 o ObjCNoType
 public static final char ObjCNoType
 o ObjCVoidType
 public static final char ObjCVoidType
 o ObjCCharType
 public static final int ObjCCharType
 o ObjCShortType
 public static final int ObjCShortType
 o ObjCLongType
 public static final int ObjCLongType
 o ObjCLonglongType
 public static final int ObjCLonglongType
 o ObjCFloatType
 public static final int ObjCFloatType
 o ObjCDoubleType
 public static final int ObjCDoubleType
 o ObjCSelectorType
 public static final int ObjCSelectorType
 o ObjCObjectType
 public static final int ObjCObjectType
 o ObjCStructType
 public static final int ObjCStructType
 o ObjCPointerType
 public static final int ObjCPointerType
 o ObjCStringType
 public static final int ObjCStringType
 o ObjCArrayType
 public static final int ObjCArrayType
 o ObjCUnionType
 public static final int ObjCUnionType
 o ObjCBitfield
 public static final int ObjCBitfield

Constructors

 o Invocation
 protected Invocation(boolean shouldAllocate,
                      int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Invocation
 public Invocation()
This default constructor is equivalent to Objective-C's [[NSInvocation alloc] init].

 o Invocation
 public Invocation(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Methods

 o invocationWithMethodSignature
 public static native Invocation invocationWithMethodSignature(MethodSignature sig)
A wrapper for the + invocationWithMethodSignature: Objective-C class method.

 o selector
 public native Selector selector()
A wrapper for the - selector Objective-C instance method.

 o setSelector
 public native void setSelector(Selector selector)
A wrapper for the - setSelector: Objective-C instance method.

 o target
 public native Object target()
A wrapper for the - target Objective-C instance method.

 o setTarget
 public native void setTarget(Object target)
A wrapper for the - setTarget: Objective-C instance method.

 o retainArguments
 public native void retainArguments()
A wrapper for the - retainArguments Objective-C instance method.

 o argumentsRetained
 public native boolean argumentsRetained()
A wrapper for the - argumentsRetained Objective-C instance method.

 o invoke
 public native void invoke()
A wrapper for the - invoke Objective-C instance method.

 o invokeWithTarget
 public native void invokeWithTarget(Object target)
A wrapper for the - invokeWithTarget: Objective-C instance method.

 o encodeWithCoder
 public native void encodeWithCoder(Coder aCoder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).


All Packages  Class Hierarchy  This Package  Previous  Next  Index